Tangoe Procurement for Rivermine and Command  [MobProc] icon

Tangoe Procurement for Rivermine and Command [MobProc]

(0 reviews)

Update Features

How to Update the Features of a Service Asset

This tutorial provides step-by-step instructions for creating, confirming, and submitting an order to update the features of a specific service asset.

Video Tutorial

This video explains how to create and submit an order request to update the features of an existing service asset.

⚠ Your browser has cookies disabled. You must have all cookies enabled for video playback to work

We also recommend browsing all of our tutorials in our Video Library at http://mobproc.tv.

Authentication

This API uses the OAuth 2 standard for authentication. Specifically, it supports two grant types: Implicit and Resource Owner Password Credentials. For details regarding how to use this standard to authenticate when making your API calls, please refer to the Security and Authentication page.

Step 1. Build the request body that is required.

Next, you will need to compile the JSON that will be submitted in the request body. This JSON includes all of the data that the backend system requires to process this order.

For an UPDATE_FEATURES transaction, this JSON typically includes the following pieces:

  • Transaction type (i.e., UPDATE_FEATURES).
  • Service asset ID for the cellular service with the features that you wish to update. This ID can be obtained via the /assets/service resource.
  • IDs for the features you wish to modify, along with the action you wish to take (i.e., ADD or REMOVE). Feature IDs can be obtained via the /catalog/features resource. You can also add a comment to provide additional information about the change, if needed.
  • All required and optional order properties. Refer to the Obtaining Order Properties page for steps how to identify the properties that are relevant for your order. Also, refer to this same page for instructions for submitting an “other/none of the above” value.

Here is an example of what the fully-assembled request body JSON might look like:

{
  "orderRequest": {
    "externalOrderNumber": "123456",
    "transactionType": "UPDATE_FEATURES",
    "serviceId": "38382335",
    "shoppingCart": {
      "features": [
        {
          "id": "518",
          "action": "ADD"
        }
      ],
      "featureRequestComment": "Please also add Caller ID"
    },
    "properties": [
      {
        "groupId": "MISCELLANEOUS",
        "fields": [
          {
            "id": "CONTACT_NUMBER",
            "type": "TEXT",
            "text": "2035559999"
          },
          {
            "id": "SERVICE_NUMBER",
            "type": "TEXT",
            "text": "2035554468"
          },
          {
            "id": "ADDITIONAL_INSTRUCTIONS",
            "type": "TEXT",
            "text": "Please confirm with account holder that feature has been added."
          }
        ]
      }
    ]
  }
}
Step 2. Set required request headers.

There are multiple HTTP headers that may be passed as part of your API request. They are used to confirm that the caller is authorized to make this request, along with optional filtering (when appropriate). See Request Headers under Using the API page for more information about our supported headers.

Required Headers:

  • X-TNGO-TENANT - Used to identify the specific tenant (i.e., customer) for which the API is being called.
  • client_id - Used to identify your client application as the one calling the API.

Optional Headers:

  • X-TNGO-CONTEXT-COMPANYEMPLOYEEID – The employee ID assigned by the tenant/customer (e.g., employee’s email address, etc.). Used to change context. Refer to Setting Context under Using the API page for additional instructions.
  • X-TNGO-CONTEXT-EMPLOYEEID – The employee ID assigned by Tangoe. Used to change context. Refer to Setting Context under Using the API page for additional instructions.
  • X-TNGO-CONTEXT-HIERARCHYID – The Tangoe-assigned ID that is used to specify the organizational hierarchy to be used for the API call.
Step 3. Indicate if you wish to obtain an order confirmation.

Prior to submitting the order for vendor processing, you will probably want to first obtain an order confirmation. The confirmation returns all of the IDs passed in with the request body, along with the human-readable data that fully describes what was referenced by those IDs (e.g., device name, vendor, price). This is useful for API consumers who wish to present the order request back to their end user so they can verify it for accuracy.

To obtain a confirmation, set the confirm query parameter to true.

Step 4. Obtain the order confirmation by calling the /orders resource via HTTP POST.

Your request, containing the JSON request body and confirm query parameter set to true, is now ready. Submit it via the HTTP POST method to the /orders resource.

If successful, the API will return a response with a 200 HTTP status code and containing JSON that fully describes the identifiers that were submitted. This data can then be presented back to the end user for verification and correction (if necessary).

Here is an example of what the order confirmation response might look like:

{
  "orderConfirmation": {
    "accountHolder": {
      "_meta": {
        "href": "https://tngo-mobproc.cloudhub.io/mobproc/v1/employees/28673732"
      },
      "companyEmployeeId": "mike.mcpadden.xx1",
      "department": {
        "id": "11569020385",
        "name": "Development"
      },
      "email": "michael.mcpadden@tangoe.com",
      "firstName": "Mike",
      "id": "28673732",
      "lastName": "McPadden",
      "officePhone": "2035559999",
      "status": "ACTIVE"
    },
    "costSummary": [
      {
        "amount": 0,
        "currencyCode": "USD",
        "recurrence": "ONETIME"
      },
      {
        "amount": 0,
        "currencyCode": "USD",
        "recurrence": "MONTHLY"
      }
    ],
    "device": {
      "accessMethod": "CDMA_PCS",
      "companyAssetId": "Mike's iphone",
      "id": "35362361",
      "macAddress": "90:33:20:94:33",
      "manufacturer": {
        "_meta": {
          "href": "https://tngo-mobproc.cloudhub.io/mobproc/v1/manufacturers/Apple"
        },
        "id": "Apple",
        "logoUrl": "https://cdn.tangoe.com/manage/images/manufacturers/Apple.gif",
        "name": "Apple"
      },
      "model": "iPhone 6 Plus (16GB) gold",
      "serialNumber": {
        "type": "IMEI",
        "value": "7738293847839"
      },
      "simId": "830002222211123"
    },
    "externalOrderNumber": "123456",
    "properties": [
      {
        "fields": [
          {
            "id": "CONTACT_NUMBER",
            "label": "Contact Phone Number",
            "text": "2035559999",
            "type": "TEXT"
          },
          {
            "id": "SERVICE_NUMBER",
            "label": "Service Number",
            "text": "2035554468",
            "type": "TEXT"
          },
          {
            "id": "ADDITIONAL_INSTRUCTIONS",
            "label": "Additional Instructions",
            "text": "Please confirm with account holder that feature has been added.",
            "type": "TEXT"
          }
        ],
        "groupId": "MISCELLANEOUS"
      }
    ],
    "region": {
      "_meta": {
        "href": "https://tngo-mobproc.cloudhub.io/mobproc/v1/regions/70144640"
      },
      "id": "70144640",
      "name": "United States"
    },
    "requestedBy": {
      "_meta": {
        "href": "https://tngo-mobproc.cloudhub.io/mobproc/v1/employees/28673732"
      },
      "companyEmployeeId": "mike.mcpadden.xx1",
      "department": {
        "id": "11569020385",
        "name": "Development"
      },
      "email": "michael.mcpadden@tangoe.com",
      "firstName": "Mike",
      "id": "28673732",
      "lastName": "McPadden",
      "officePhone": "2035559999",
      "status": "ACTIVE"
    },
    "service": {
      "_meta": {
        "href": "https://tngo-mobproc.cloudhub.io/mobproc/v1/assets/services/38382335"
      },
      "contractDates": {
        "activated": "2014-02-15T06:00:00Z",
        "end": "2017-02-18T06:00:00Z",
        "lastDeviceUpgrade": "2015-02-18T06:00:00Z",
        "start": "2015-02-18T06:00:00Z"
      },
      "id": "38382335",
      "serviceNumber": "2035554468",
      "status": "ACTIVE"
    },
    "shoppingCart": {
      "featureRequestComment": "Please also add Caller ID",
      "features": [
        {
          "action": "ADD",
          "description": "Call Forwarding ($0.20 per minute)",
          "id": "518",
          "price": {
            "amount": 0,
            "currencyCode": "USD",
            "recurrence": "MONTHLY"
          }
        }
      ],
      "quantity": 0
    },
    "transactionType": "UPDATE_FEATURES"
  },
  "status": "SUCCESS"
}
Step 5. Submit order request.

Once the request has been confirmed, it can be re-submitted for processing via HTTP POST. Before submitting, be sure to set the confirm query parameter to false (or remove it, since the default is false).

If the submission is successful, the API will once again return a response containing JSON with an HTTP status code of 200. This response also will include the newly-assigned order number (i.e., orderId).

Here is an example of what the order response might look like:

{
  "order": {
    "_meta": {
      "href": "https://tngo-mobproc.cloudhub.io/mobproc/v1/orders/8712260"
    },
    "accountHolder": {
      "_meta": {
        "href": "https://tngo-mobproc.cloudhub.io/mobproc/v1/employees/28673732"
      },
      "companyEmployeeId": "mike.mcpadden.xx1",
      "department": {
        "id": "11569020385",
        "name": "Development"
      },
      "email": "michael.mcpadden@tangoe.com",
      "firstName": "Mike",
      "id": "28673732",
      "lastName": "McPadden",
      "officePhone": "2035559999",
      "status": "ACTIVE"
    },
    "dateSubmitted": "2016-02-01T16:07:59Z",
    "externalOrderNumber": "123456",
    "orderId": "8712260",
    "orderSegments": {
      "items": [
        {
          "_meta": {
            "hrefHistory": "https://tngo-mobproc.cloudhub.io/mobproc/v1/orders/8712260/history?orderSegment=8712261",
            "hrefShipments": "https://tngo-mobproc.cloudhub.io/mobproc/v1/orders/8712260/shipments?orderSegment=8712261"
          },
          "accessories": [],
          "features": [
            {
              "action": "ADD",
              "description": "Call Forwarding ($0.20 per minute)",
              "id": "518",
              "price": {
                "amount": 0,
                "currencyCode": "USD",
                "recurrence": "MONTHLY"
              }
            }
          ],
          "orderSegmentId": "8712261",
          "plan": {
            "optionalFeatures": []
          },
          "status": "ORDER_SUBMITTED",
          "vendor": {
            "_meta": {
              "href": "https://tngo-mobproc.cloudhub.io/mobproc/v1/vendors/105"
            },
            "id": "105",
            "logoUrl": "https://cdn.tangoe.com/manage/images/carrier/logo_SPR.gif",
            "name": "Sprint"
          }
        }
      ]
    },
    "properties": [
      {
        "fields": [
          {
            "id": "CONTACT_NUMBER",
            "label": "Contact Phone Number",
            "text": "2035559999",
            "type": "TEXT"
          },
          {
            "id": "SERVICE_NUMBER",
            "label": "Service Number",
            "text": "2035554468",
            "type": "TEXT"
          },
          {
            "id": "ADDITIONAL_INSTRUCTIONS",
            "label": "Additional Instructions",
            "text": "Please confirm with account holder that feature has been added.",
            "type": "TEXT"
          }
        ],
        "groupId": "MISCELLANEOUS"
      }
    ],
    "requestedBy": {
      "_meta": {
        "href": "https://tngo-mobproc.cloudhub.io/mobproc/v1/employees/28673732"
      },
      "companyEmployeeId": "mike.mcpadden.xx1",
      "department": {
        "id": "11569020385",
        "name": "Development"
      },
      "email": "michael.mcpadden@tangoe.com",
      "firstName": "Mike",
      "id": "28673732",
      "lastName": "McPadden",
      "officePhone": "2035559999",
      "status": "ACTIVE"
    },
    "serviceNumber": "2035554468",
    "shipTo": {
      "address": []
    },
    "status": "ORDER_SUBMITTED",
    "transactionType": "UPDATE_FEATURES"
  },
  "status": "SUCCESS"
}

Reviews